home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / mysteryc.arj / EXH8.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-15  |  114 b   |  10 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4.  int i;
  5.  unsigned int j;
  6.  j = 50000;
  7.  i = 50000;
  8.  printf("%d %u", i, j);
  9.  }
  10.